/* Global Styles */

:root {

    --primary: #3a0ca3;

    --secondary: #4cc9f0;

    --accent: #f72585;

    --dark: #14213d;

    --light: #f8f9fa;

    --gray: #6c757d;

    --success: #4caf50;

}

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

body {

    font-family: 'Open Sans', sans-serif;

    line-height: 1.6;

    color: #333;

    background-color: #f8f9fa;

}

h1, h2, h3, h4, h5, h6 {

    font-family: 'Montserrat', sans-serif;

    font-weight: 700;

    margin-bottom: 1rem;

}

.container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}

.section {

    padding: 80px 0;

}

/* Header & Navigation */

.hero {

    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);

    color: white;

    padding: 20px 0 100px;

    position: relative;

    overflow: hidden;

}

nav {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 0;

}

.logo {

    font-family: 'Montserrat', sans-serif;

    font-weight: 700;

    font-size: 1.5rem;

    color: white;

}

.nav-links {

    display: flex;

    list-style: none;

}

.nav-links li {

    margin-left: 30px;

}

.nav-links a {

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: color 0.3s;

}

.nav-links a:hover {

    color: var(--secondary);

}

.hero-content {

    text-align: center;

    padding: 80px 0;

    max-width: 800px;

    margin: 0 auto;

}

.hero-content h1 {

    font-size: 3.5rem;

    margin-bottom: 20px;

}

.subtitle {

    font-size: 1.25rem;

    margin-bottom: 30px;

    opacity: 0.9;

}

.cta-button {

    display: inline-block;

    background-color: var(--accent);

    color: white;

    padding: 12px 30px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s;

}

.cta-button:hover {

    background-color: #d91a6b;

    transform: translateY(-3px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

}

/* About Section */

.about-section {

    background-color: white;

}

.about-content {

    display: flex;

    align-items: center;

    gap: 50px;

    margin-top: 40px;

}

.about-text {

    flex: 1;

}

.about-text ul {

    margin: 20px 0;

    padding-left: 20px;

}

.about-text li {

    margin-bottom: 10px;

}

.about-image {

    flex: 1;

}

.about-image img {

    width: 100%;

    border-radius: 10px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}

/* Skateboard Section */

.skateboard-section {

    background-color: var(--light);

}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 20px;

    margin: 40px 0;

}

.stat-card {

    background: white;

    padding: 30px;

    border-radius: 10px;

    text-align: center;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

}

.stat-number {

    font-size: 3rem;

    font-weight: 700;

    color: var(--primary);

    margin-bottom: 10px;

}

.stat-label {

    color: var(--gray);

    font-size: 0.9rem;

}

.skateboard-content {

    display: flex;

    align-items: center;

    gap: 50px;

    margin-top: 40px;

}

.skateboard-text {

    flex: 1;

}

.skateboard-text ul {

    margin: 20px 0;

    padding-left: 20px;

}

.skateboard-image {

    flex: 1;

}

.skateboard-image img {

    width: 100%;

    border-radius: 10px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}

/* Clash Royale Section */

.clash-section {

    background-color: white;

}

.clash-content {

    display: flex;

    align-items: center;

    gap: 50px;

    margin-top: 40px;

}

.clash-text {

    flex: 1;

}

.clash-text ul {

    margin: 20px 0;

    padding-left: 20px;

}

.deck-showcase {

    margin-top: 30px;

}

.deck-cards {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

    margin-top: 15px;

}

.card {

    background-color: var(--light);

    padding: 15px;

    border-radius: 8px;

    text-align: center;

    font-weight: 600;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);

}

.clash-image {

    flex: 1;

    position: relative;

}

.clash-image img {

    width: 100%;

    border-radius: 10px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}

.trophy-count {

    position: absolute;

    bottom: 20px;

    left: 50%;

    transform: translateX(-50%);

    background: rgba(0, 0, 0, 0.7);

    color: white;

    padding: 10px 20px;

    border-radius: 50px;

    display: flex;

    align-items: center;

    gap: 10px;

}

.trophy-count i {

    color: gold;

}

/* Action Section */

.action-section {

    background-color: var(--light);

}

.action-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

    margin: 40px 0;

}

.action-card {

    background: white;

    padding: 30px;

    border-radius: 10px;

    text-align: center;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

    transition: transform 0.3s;

}

.action-card:hover {

    transform: translateY(-10px);

}

.action-card i {

    font-size: 2.5rem;

    color: var(--primary);

    margin-bottom: 20px;

}

.action-card h3 {

    margin-bottom: 15px;

}

.action-card p {

    margin-bottom: 20px;

    color: var(--gray);

}

.action-button {

    display: inline-block;

    background-color: var(--primary);

    color: white;

    padding: 10px 25px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s;

}

.action-button:hover {

    background-color: #2a0980;

}

.contact-form {

    background: white;

    padding: 40px;

    border-radius: 10px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

    margin-top: 50px;

}

.form-group {

    margin-bottom: 20px;

}

.form-group label {

    display: block;

    margin-bottom: 8px;

    font-weight: 600;

}

.form-group input,

.form-group textarea {

    width: 100%;

    padding: 12px;

    border: 1px solid #ddd;

    border-radius: 5px;

    font-family: 'Open Sans', sans-serif;

}

.form-group textarea {

    min-height: 150px;

}

.submit-button {

    background-color: var(--accent);

    color: white;

    border: none;

    padding: 12px 30px;

    border-radius: 50px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s;

}

.submit-button:hover {

    background-color: #d91a6b;

}

/* Footer */

footer {

    background-color: var(--dark);

    color: white;

    padding: 50px 0 20px;

}

.footer-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;

}

.footer-logo {

    font-family: 'Montserrat', sans-serif;

    font-weight: 700;

    font-size: 1.5rem;

}

.footer-links {

    display: flex;

    gap: 20px;

}

.footer-links a {

    color: white;

    text-decoration: none;

    transition: color 0.3s;

}

.footer-links a:hover {

    color: var(--secondary);

}

.social-links {

    display: flex;

    gap: 15px;

}

.social-links a {

    color: white;

    font-size: 1.2rem;

    transition: color 0.3s;

}

.social-links a:hover {

    color: var(--secondary);

}

.copyright {

    text-align: center;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    font-size: 0.9rem;

    opacity: 0.7;

}

/* Responsive Design */

@media (max-width: 768px) {

    .hero-content h1 {

        font-size: 2.5rem;

    }

    .about-content,

    .skateboard-content,

    .clash-content {

        flex-direction: column;

    }

    .nav-links {

        display: none;

    }

    .stats-grid {

        grid-template-columns: 1fr;

    }

    .deck-cards {

        grid-template-columns: repeat(2, 1fr);

    }

    .footer-content {

        flex-direction: column;

        gap: 20px;

        text-align: center;

    }

    .footer-links {

        flex-direction: column;

        gap: 10px;

    }

} 